home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 1.iso
/
HENSA
/
MISC
/
SHELL.ARC
/
Shell
/
Sources
/
c
/
ArrayLabel
next >
Wrap
Text File
|
1994-05-17
|
780b
|
36 lines
#include "Shell.ArrayLabel.h"
#include "Shell.Array.h"
#include "Shell.FontLabel.h"
#include "Shell.Vector.h"
#define LABEL_YPOS Shell_TEXTYSIZE
Shell_rectblock *Shell_Add2DDoubleArrayLabel(
Shell_windblock *w, int x, int y, int xsize, int ysize,
int forecol, int backcol, double **data, char *text
)
{
Shell_FontLabel( w, x, y + LABEL_YPOS, forecol, backcol, text);
return Shell_Add2DDoubleArray( w, x, y, xsize, ysize, forecol, backcol, data);
}
Shell_rectblock *Shell_AddDoubleVerticalVectorLabel(
Shell_windblock *wind,
int x,
int y,
int size,
int forecol,
int backcol,
double *data,
char *text
)
{
Shell_FontLabel( wind, x, y + LABEL_YPOS, forecol, backcol, text);
return Shell_AddDoubleVerticalVector( wind, x, y, size, forecol, backcol, data);
}